home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / alpha.arc / MAC.H < prev    next >
C/C++ Source or Header  |  1987-12-22  |  469b  |  23 lines

  1. /* Asynch controller control block */
  2. #define MAX_STORE 1024
  3.  
  4. struct Store_input {
  5.     char *head;
  6.     char store[MAX_STORE];
  7.     char *tail;
  8.     int   amt;
  9. };
  10.  
  11. struct asy {
  12.     unsigned int speed;        /* Line speed */
  13.     int    portIn;
  14.     int portOut;
  15.     int    devopen;
  16.     char *tty;
  17.     char recv_buf[MAX_STORE];
  18.     char snd_buf[MAX_STORE];
  19. };
  20. extern struct asy asy[];
  21. extern unsigned nasy;        /* Actual number of asynch lines */
  22. #define    ASY_MAX    2        /* Two asynch ports on the MAC */
  23.